home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / graphics / regions.inc < prev    next >
Text File  |  1998-06-24  |  205b  |  15 lines

  1. include "inc/exec/types.inc";
  2. include "inc/graphics/gfx.inc";
  3.  
  4. struct RegionRectangle is
  5.   Next:ulong;
  6.   Prev:ulong;
  7.   bounds:Rectangle;
  8. ;
  9.  
  10. struct Region is
  11.   bounds:Rectangle;
  12.   RegionRectangle:ulong;
  13. ;
  14.  
  15.